home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / gift4b12.zip / PROUTEST.BAT < prev    next >
DOS Batch File  |  1992-01-23  |  994b  |  34 lines

  1. @echo off
  2. goto starttest
  3.  
  4. rem -- Process test uploads request - for ProDOOR 3.44
  5. rem -- Prodoor passes the following parameters to PROUTEST
  6. rem -- * %1  Log file
  7. rem -- * %2  Location of uploaded Files (PLAY directory)
  8. rem -- * %3  COM Port
  9. rem -- * %4  Current Conference Number
  10.  
  11. :starttest
  12. rem -- Keep a permanant log of all DSZ transfers
  13. if exist %DSZLOG% type %DSZLOG% >> perm.log
  14.  
  15. rem -- If there are no uploaded files, then exit
  16. if not exist %2\*.* goto end
  17.  
  18. goto testeach
  19. rem -- Test each uploaded file individually by calling PROUT1.BAT for
  20. rem -- each file in the play directory.
  21. rem -- Pass the following parameters to PROUT1
  22. rem -- %1  Log File
  23. rem -- %2  File Name to test
  24. rem -- %3  COM Port
  25. rem -- %4  Current Conference
  26. rem -- %5  PLAY directory
  27. rem -- %6  PCB Directory (from environment as %PCBDRIVE%%PCBDIR%)
  28. :testeach
  29. proecho %3 ~~Testing uploads.  Please wait...~
  30. for %%f in (%2\*.*) do call prout1 %1 %%f %3 %4 %2 %pcbdrive%%pcbdir%
  31.  
  32. :end
  33.  
  34.